home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / dropunx.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1996-02-16  |  347b  |  16 lines

  1. #!/bin/sh -u
  2.  
  3. # This script removed the need for "-f makefile.unx" when making the system
  4. # by taking the .unx off all the unix makefiles
  5.  
  6. UNX_FILES=`find . -name makefile.unx -print`
  7.  
  8. for UNX_FILE in $UNX_FILES
  9. do
  10.     FILE=`echo $UNX_FILE | sed 's/\.unx//g'`
  11.     mv $UNX_FILE $FILE
  12. done
  13.  
  14. sed 's/\makefile.unx/makefile/g' <makefile >xxx
  15. mv xxx makefile
  16.